home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / Recent1 / ZCD.lha / AmyResource1 / Installa next >
Text File  |  1996-12-01  |  2KB  |  100 lines

  1. ; Script "Installa"
  2. ;
  3. ; © 1996, Luca Danelon per Interactive
  4. ;
  5. ; Versione 1.4
  6. ;
  7. ; Little History:
  8. ; 09/10/96 - Risolto un piccolo bug nell'assegnazione di MUI
  9. ; 27/10/96 - Aggiunte alcune directory di sistema
  10. ; 01/12/96 - Corretto il riferimento errato per la voce ENV:
  11.  
  12. C:Assign AR: AmyResource_Uno:
  13. Assign C: AR:C add
  14. Assign LIBS: AR:Libs add
  15. Assign L: AR:L add
  16. Assign LOCALE: AR:Locale add
  17. Assign LIBS: AR:Classes add
  18. Assign FONTS: AR:Fonts add
  19. Assign LIBS: AR:Classes add
  20. Assign S: AR:S add
  21. Assign ENV: AR:Prefs/Envarc add
  22.  
  23. Path AR:Rexxc add
  24.  
  25. ;AWeb support
  26. c:CAPrefs >NIL:
  27.  
  28. ;MathScript
  29. assign MathScript: exists >NIL:
  30. If warn
  31.   assign MathScript: AR:Software/Scientifici/MathScript
  32.   assign PSFonts: AR:Software/Scientifici/MathScript add
  33. Endif
  34.  
  35. ;ArtStudioDemo
  36. assign ArtStudio: exists >NIL:
  37. if warn
  38.   assign ArtStudio: AR:Demo/Commerciali/ArtStudio
  39. Endif
  40.  
  41. ;Plotter3D
  42. assign Plotter3D: exists >NIL:
  43. if warn
  44.   assign Plotter3D: AR:Software/Scientifici/Plotter3D
  45. Endif
  46.  
  47. ;MusiclineEditor
  48. assign Mline: exists >NIL:
  49. if warn
  50.   Assign Mline: AR:Software/Musica/MusiclineEditor
  51. Endif
  52.  
  53. ;ProgED
  54. assign ProgED: exists >NIL:
  55. if warn
  56.   Assign ProgED: AR:Software/Editor/ProgED
  57.   Path ProgED: ADD
  58. endif
  59.  
  60. ;GenesisPro
  61. assign Genesis: exists >NIL:
  62. if warn
  63.   Assign Genesis: AR:Software/Giochi/GenesisPro
  64. Endif
  65.  
  66. ;FontMachine2
  67. assign FONTS: AR:Demo/Commerciali/FontMachine2_Demo/Fonts add
  68. assign LIBS: AR:Demo/Commerciali/FontMachine2_Demo/Libs add
  69.  
  70. ;Dice
  71. SetEnv DCCOPTS "-2.0"
  72. Assign DINCLUDE: AR:Software/Programmazione/C/FreeDice/Include
  73. Assign DLIB:     AR:Software/Programmazione/C/FreeDice/Dlib
  74.  
  75. ;BlitzBasic
  76. Assign Blitz2: AR:Software/Programmazione/Basic/BlitzDemo
  77. Assign BlitzLibs: Blitz2:
  78.  
  79. Assign MUI: exists >NIL:
  80. If warn
  81.   ASSIGN MUI: AR:Tools/MUI
  82.   ASSIGN LIBS: AR:Tools/MUI/Libs add
  83.   if exists MUI:Docs
  84.     if exists HELP:dummy ; do not remove
  85.     endif                ; this entry!
  86.     assign add HELP: MUI:Docs
  87.   endif
  88. Else
  89.   Version LIBS:muimaster.library >NIL: 17
  90.   If warn
  91.     ASSIGN MUI: AR:Tools/MUI
  92.     ASSIGN LIBS: AR:Tools/MUI/Libs add
  93.     if exists MUI:Docs
  94.       if exists HELP:dummy ; do not remove
  95.       endif                ; this entry!
  96.       assign add HELP: MUI:Docs
  97.     endif
  98.   EndIf  
  99. EndIf
  100.